home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / dopus412-gpl / dopus_print / stringdata.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  2KB  |  71 lines

  1. /*
  2.  
  3. Directory Opus 4
  4. Original GPL release version 4.12
  5. Copyright 1993-2000 Jonathan Potter
  6.  
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License
  9. as published by the Free Software Foundation; either version 2
  10. of the License, or (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. All users of Directory Opus 4 (including versions distributed
  22. under the GPL) are entitled to upgrade to the latest version of
  23. Directory Opus version 5 at a reduced price. Please see
  24. http://www.gpsoft.com.au for more information.
  25.  
  26. The release of Directory Opus 4 under the GPL in NO WAY affects
  27. the existing commercial status of Directory Opus 5.
  28.  
  29. */
  30.  
  31. #ifndef STRING_DATA_H
  32. #define STRING_DATA_H
  33.  
  34. struct DefaultString {
  35.     USHORT string_id;
  36.     char *string;
  37. };
  38.  
  39. struct StringData {
  40.     struct DefaultString *default_table;
  41.     int string_count;
  42.  
  43.     char **string_table;
  44.  
  45.     char *string_buffer;
  46.     ULONG string_size;
  47.  
  48.     int min_version;
  49. };
  50.  
  51. #define ID_OSTR MAKE_ID('O','S','T','R')
  52. #define ID_STHD MAKE_ID('S','T','H','D')
  53. #define ID_STRN MAKE_ID('S','T','R','N')
  54.  
  55. typedef struct StringFile_Header {
  56.     ULONG header_id;         /* STHD */
  57.     ULONG header_size;
  58.     ULONG version;
  59.     ULONG stringcount;
  60.     ULONG flags;
  61.     char  language[20];
  62. } StringHeader;
  63.  
  64. typedef struct StringFile_String {
  65.     ULONG chunk_id;          /* STRN */
  66.   ULONG chunk_size;
  67.   ULONG string_id;
  68. } String;
  69.  
  70. #endif
  71.